home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’96
/
ObiWan DCMD Source Dist
/
LineTypes.p
next >
Wrap
Text File
|
1996-06-22
|
177b
|
15 lines
unit LineTypes;
interface
const
lines_max = 12;
width_max = 80;
type
lineStr = string[width_max];
linesArray = array[1..lines_max] of lineStr;
implementation
end.